home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / gauge / odomvb25 / vcview.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-12  |  1.1 KB  |  53 lines

  1. // vcview.h : interface of the CVcView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CVcView : public CFormView
  6. {
  7. protected: // create from serialization only
  8.     CVcView();
  9.     DECLARE_DYNCREATE(CVcView)
  10.  
  11. public:
  12.     //{{AFX_DATA(CVcView)
  13.     enum { IDD = IDD_VC_FORM };
  14.     CVBControl*    m_odom3;
  15.     CVBControl*    m_odom2;
  16.     CVBControl*    m_odom1;
  17.     //}}AFX_DATA
  18.  
  19. // Attributes
  20. public:
  21.     CVcDoc* GetDocument();
  22.  
  23. // Operations
  24. public:
  25.  
  26. // Implementation
  27. public:
  28.     virtual ~CVcView();
  29. #ifdef _DEBUG
  30.     virtual void AssertValid() const;
  31.     virtual void Dump(CDumpContext& dc) const;
  32. #endif
  33.  
  34. protected:
  35.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  36.  
  37. // Generated message map functions
  38. protected:
  39.     //{{AFX_MSG(CVcView)
  40.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  41.     afx_msg void OnDestroy();
  42.     afx_msg void OnTimer(UINT nIDEvent);
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.  
  47. #ifndef _DEBUG  // debug version in vcview.cpp
  48. inline CVcDoc* CVcView::GetDocument()
  49.    { return (CVcDoc*)m_pDocument; }
  50. #endif
  51.  
  52. /////////////////////////////////////////////////////////////////////////////
  53.